home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-11-07 | 1.7 KB | 51 lines |
- #
- # Makefile --
- #
- # Makefile for Extended Tcl package library.
- #
- #------------------------------------------------------------------------------
- # Copyright 1992 Karl Lehenbauer and Mark Diekhans.
- #
- # Permission to use, copy, modify, and distribute this software and its
- # documentation for any purpose and without fee is hereby granted, provided
- # that the above copyright notice appear in all copies. Karl Lehenbauer and
- # Mark Diekhans make no representations about the suitability of this
- # software for any purpose. It is provided "as is" without express or
- # implied warranty.
- #------------------------------------------------------------------------------
- # $Id: Makefile,v 2.0 1992/10/16 04:51:50 markd Rel $
- #------------------------------------------------------------------------------
- #
-
- include ../Config.mk
- include ../config/$(TCL_CONFIG_FILE)
- SHELL=/bin/sh
-
- #------------------------------------------------------------------------------
-
- TCL.TLIB=../tcllib/tcl.tlib
- TCL.TNDX=../tcllib/tcl.tndx
-
- #------------------------------------------------------------------------------
-
- TCL_SRCS=arrayprocs.tcl asgnfields.tcl edprocs.tcl forfile.tcl \
- forrecur.tcl globrecur.tcl help.tcl packages.tcl \
- pushd.tcl setfuncs.tcl showprocs.tcl stringfile.tcl \
- compat.tcl convlib.tcl profrep.tcl
-
- #------------------------------------------------------------------------------
-
- all: made.tmp
-
- made.tmp: $(TCL.TLIB)
- touch made.tmp
-
- $(TCL.TLIB): $(TCL_SRCS)
- cat $(TCL_SRCS) | egrep -v '^#$$|^# *|^#-|^#=|^ *#' > $@
-
- #------------------------------------------------------------------------------
-
- clean:
- -rm -f made.tmp $(TCL.TLIB) $(TCL.TNDX)
-
-